Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/149 - Snake Game Voice/

index.html /cody/swapnilsparsh/30DaysOfJavaScript/149 - Snake Game Voice/index.html
416 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
main.js /cody/swapnilsparsh/30DaysOfJavaScript/149 - Snake Game Voice/main.js
241 Views
0 Comments
var canvas = document.getElementById("area");

canvas.style.height = "80vh";
canvas.style.width = "80%";

var clx = canvas.getCo
readme.md /cody/swapnilsparsh/30DaysOfJavaScript/149 - Snake Game Voice/readme.md
241 Views
0 Comments
# Snake game using voice control
This is a snake game in which a snake moves inside a box in search of food. Snake movement is c
speechCommand.js /cody/swapnilsparsh/30DaysOfJavaScript/149 - Snake Game Voice/speechCommand.js
231 Views
0 Comments

const URL = "https://teachablemachine.withgoogle.com/models/JHem2FpyN/";

async function createModel() {
const checkpointUR
style.css /cody/swapnilsparsh/30DaysOfJavaScript/149 - Snake Game Voice/style.css
195 Views
0 Comments
*{
margin: 2px;
padding: 2px;
box-sizing: border-box;
}

body{
background-color: rgb(4, 230, 4);